crypto/internal/nistec.P384Point.y (field)

23 uses

	crypto/internal/nistec (current package)
		p384.go#L24: 	x, y, z *fiat.P384Element
		p384.go#L31: 		y: new(fiat.P384Element).One(),
		p384.go#L39: 	p.y.SetBytes([]byte{0x36, 0x17, 0xde, 0x4a, 0x96, 0x26, 0x2c, 0x6f, 0x5d, 0x9e, 0x98, 0xbf, 0x92, 0x92, 0xdc, 0x29, 0xf8, 0xf4, 0x1d, 0xbd, 0x28, 0x9a, 0x14, 0x7c, 0xe9, 0xda, 0x31, 0x13, 0xb5, 0xf0, 0xb8, 0xc0, 0xa, 0x60, 0xb1, 0xce, 0x1d, 0x7e, 0x81, 0x9d, 0x7a, 0x43, 0x1d, 0x7c, 0x90, 0xea, 0xe, 0x5f})
		p384.go#L47: 	p.y.Set(q.y)
		p384.go#L76: 		p.y.Set(y)
		p384.go#L101: 		p.y.Set(y)
		p384.go#L159: 	y := new(fiat.P384Element).Mul(p.y, zinv)
		p384.go#L204: 	y := new(fiat.P384Element).Mul(p.y, zinv)
		p384.go#L220: 	t1 := new(fiat.P384Element).Mul(p1.y, p2.y)  // t1 := Y1 * Y2
		p384.go#L222: 	t3 := new(fiat.P384Element).Add(p1.x, p1.y)  // t3 := X1 + Y1
		p384.go#L223: 	t4 := new(fiat.P384Element).Add(p2.x, p2.y)  // t4 := X2 + Y2
		p384.go#L227: 	t4.Add(p1.y, p1.z)                           // t4 := Y1 + Z1
		p384.go#L228: 	x3 := new(fiat.P384Element).Add(p2.y, p2.z)  // X3 := Y2 + Z2
		p384.go#L264: 	q.y.Set(y3)
		p384.go#L275: 	t1 := new(fiat.P384Element).Square(p.y)      // t1 := Y ^ 2
		p384.go#L277: 	t3 := new(fiat.P384Element).Mul(p.x, p.y)    // t3 := X * Y
		p384.go#L301: 	t0.Mul(p.y, p.z)                             // t0 := Y * Z
		p384.go#L310: 	q.y.Set(y3)
		p384.go#L318: 	q.y.Select(p1.y, p2.y, cond)